home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
PROGRAMM
/
PASCAL
/
H406.ZIP
/
TOTDEM11.ZIP
/
DEMWI1.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
407b
|
24 lines
program DemoWindowOne;
{DEMWI1 - simple window}
Uses DOS,CRT,
totFAST, totINPUT, totWIN;
var
MyWindow: WinOBJ;
K: word;
X,Y: byte;
begin
Screen.Clear(white,'░'); {paint the screen}
with MyWindow do
begin
Init;
Draw;
Screen.WriteLn('Hello Mum');
Repeat
WinGetKey(K,X,Y);
until (K = 600) or (K= 27);
Done;
end;
end.